home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.4)
-
- """ Python Character Mapping Codec generated from 'TURKISH.TXT' with gencodec.py.
-
- Written by Marc-Andre Lemburg (mal@lemburg.com).
-
- (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
- (c) Copyright 2000 Guido van Rossum.
-
- """
- import codecs
-
- class Codec(codecs.Codec):
-
- def encode(self, input, errors = 'strict'):
- return codecs.charmap_encode(input, errors, encoding_map)
-
-
- def decode(self, input, errors = 'strict'):
- return codecs.charmap_decode(input, errors, decoding_map)
-
-
-
- class StreamWriter(Codec, codecs.StreamWriter):
- pass
-
-
- class StreamReader(Codec, codecs.StreamReader):
- pass
-
-
- def getregentry():
- return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
-
- decoding_map = codecs.make_identity_dict(range(256))
- decoding_map.update({
- 128: 196,
- 129: 197,
- 130: 199,
- 131: 201,
- 132: 209,
- 133: 214,
- 134: 220,
- 135: 225,
- 136: 224,
- 137: 226,
- 138: 228,
- 139: 227,
- 140: 229,
- 141: 231,
- 142: 233,
- 143: 232,
- 144: 234,
- 145: 235,
- 146: 237,
- 147: 236,
- 148: 238,
- 149: 239,
- 150: 241,
- 151: 243,
- 152: 242,
- 153: 244,
- 154: 246,
- 155: 245,
- 156: 250,
- 157: 249,
- 158: 251,
- 159: 252,
- 160: 8224,
- 161: 176,
- 164: 167,
- 165: 8226,
- 166: 182,
- 167: 223,
- 168: 174,
- 170: 8482,
- 171: 180,
- 172: 168,
- 173: 8800,
- 174: 198,
- 175: 216,
- 176: 8734,
- 178: 8804,
- 179: 8805,
- 180: 165,
- 182: 8706,
- 183: 8721,
- 184: 8719,
- 185: 960,
- 186: 8747,
- 187: 170,
- 188: 186,
- 189: 8486,
- 190: 230,
- 191: 248,
- 192: 191,
- 193: 161,
- 194: 172,
- 195: 8730,
- 196: 402,
- 197: 8776,
- 198: 8710,
- 199: 171,
- 200: 187,
- 201: 8230,
- 202: 160,
- 203: 192,
- 204: 195,
- 205: 213,
- 206: 338,
- 207: 339,
- 208: 8211,
- 209: 8212,
- 210: 8220,
- 211: 8221,
- 212: 8216,
- 213: 8217,
- 214: 247,
- 215: 9674,
- 216: 255,
- 217: 376,
- 218: 286,
- 219: 287,
- 220: 304,
- 221: 305,
- 222: 350,
- 223: 351,
- 224: 8225,
- 225: 183,
- 226: 8218,
- 227: 8222,
- 228: 8240,
- 229: 194,
- 230: 202,
- 231: 193,
- 232: 203,
- 233: 200,
- 234: 205,
- 235: 206,
- 236: 207,
- 237: 204,
- 238: 211,
- 239: 212,
- 240: None,
- 241: 210,
- 242: 218,
- 243: 219,
- 244: 217,
- 245: None,
- 246: 710,
- 247: 732,
- 248: 175,
- 249: 728,
- 250: 729,
- 251: 730,
- 252: 184,
- 253: 733,
- 254: 731,
- 255: 711 })
- encoding_map = codecs.make_encoding_map(decoding_map)
-